home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung / Power-Programmierung (Tewi)(1994).iso / magazine / progjour / 1991 / 06 / generic.cpp < prev    next >
C/C++ Source or Header  |  1991-06-05  |  351b  |  14 lines

  1. #include <windows.h>
  2. #include "winclass.h"
  3. #include "initinst.h"
  4.  
  5. /*--------------------------------------------------------------------------
  6.   Make an instance of a generic window
  7. --------------------------------------------------------------------------*/
  8. BOOL InitInstance()
  9. {
  10.   static MAINWINDOW Generic;
  11.  
  12.   return Generic.Make();
  13. }
  14.